Add SKILL.md documentation and npm skill distribution RFC#35
Merged
Conversation
- Add SKILL.md with complete documentation for AI assistants - Add RFC document proposing npm-based skill distribution - Update package.json with skill metadata and include SKILL.md in published files - Propose convention for distributing skills directly in npm packages This addresses the workflow issues with skills.sh and project-level skill installation by embedding skill definitions directly in npm packages. https://claude.ai/code/session_01MS6F6w5LqS167UuLB2CppX
- Remove SKILL.md from root (incorrect placement) - Add plugins/claude/firefox-devtools/ with proper structure: - .claude-plugin/plugin.json (manifest) - skills/browser-automation/SKILL.md - .mcp.json (MCP server config) - README.md - Update RFC to reflect plugin-based distribution approach - Update package.json files array to include plugins/ - Follow Context7 convention for npm plugin distribution https://claude.ai/code/session_01MS6F6w5LqS167UuLB2CppX
Plugin distribution via npm is already established (Context7 example). No need for RFC - just follow existing conventions. https://claude.ai/code/session_01MS6F6w5LqS167UuLB2CppX
- README: 54 → 31 lines (more concise) - SKILL.md: 98 → 45 lines (focused on workflow, not tool listing) - Style inspired by context7 plugin
Structure now matches context7 plugin: - commands/: /firefox:navigate, /firefox:screenshot, /firefox:debug - agents/: e2e-tester, web-scraper - skills/: Enhanced browser-automation skill - Updated README with full documentation - Added author info (Tomáš Grasl)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces the
SKILL.mdfile as the primary documentation for the Firefox DevTools MCP server and establishes a framework for distributing skills directly via npm packages. It also includes an RFC proposing a new standard for skill distribution in the npm ecosystem.Key Changes
Added SKILL.md - Comprehensive Czech-language documentation covering:
Added RFC document (
docs/rfc-npm-skill-distribution.md) - Proposes a new distribution model:SKILL.mddirectly in npm packages instead of centralized registriesUpdated package.json - Added skill metadata:
SKILL.mdin thefilesarray for npm distributionskillfield with main file reference, keywords, and AI tool compatibilityImplementation Details
The
SKILL.mdformat includes:The RFC proposes that AI assistants would automatically discover and index skills by scanning
node_modules/*/SKILL.md, eliminating the need for centralized registries and enabling version-locked skill documentation alongside code dependencies.Benefits